Toggle navigation
Courses
Questions
Tags
Users
04-06 Lab exercise 1: Structure to handle Time
0
like
0
dislike
2.7k
views
Write a program with following requirements:
Define the
structure
type time with fields: hours, minutes, and seconds.
Write a function that takes an integer as parameter and converts that integer (as seconds) to hours, minutes, and seconds. These values should be stored into the fields of a structure of type time, and
the function should return that structure
.
Write a program that reads an integer, calls the function, and displays the fields of the returned structure.
Example input:
7776
Example output:
2:9:36
[Exercise]
Coding (C)
-
asked
Apr 6, 2017
in
C
ID: 23557 -
Available when:
Unlimited
-
Due to:
Unlimited
|
2.7k
views
comment
0
0
Called for Help
Please
log in
or
register
to add a comment.
32
Answers
0
like
0
dislike
Hidden content!
#include ** * * *
** * * ******* * ***
struct Clock{
* *** * * * * * * ****** * hours;
** ** ** ** ** minutes;
* * * * ** ** * seconds;
};
int main(){
**** * *** * ** * ** * ** *** input;
** ** * **** ** *** ** Clock ******
* *** ** * ** * *** **** * *** **** * ** * ** *** *
* * *** *** ****** * * *** = input / 3600;
* **** *** * * * **** ** = (input % 3600) / 60;
**** * * * ** * ** ** ** *** = (input % 3600) % 60;
* *** * * *** ****** * ** * ** * ** ** ** * *** *** ** ** ** *
**** * *** ***** *** * *** * 0;
}
answered
May 17, 2017
by
Batman
(
-218
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include ** * * **
* ** ** *** * **
struct Clock{
****** * *** * ** * * * hours;
* ** **** * * * **** minutes;
* ** * * **** ** ** seconds;
};
int main(){
*** * *** *** * **** * ** * input;
* * ** * ** * * Clock **
**** *** ** * *** ** * **** * ** * * ** ******* *
* * ** ** ** **** * ** ** ** = input / 3600;
* * **** * * * ****** * ** = (input % 3600) / 60;
***** *** * * * **** ** * ** * = (input % 3600) % 60;
* * ** ** * * * ** *** * **** *** * ** * ** * ** *** * ** * * *** ***
** *** *** ****** * * * 0;
}
answered
Apr 20, 2017
by
HnryGvez
(
-48
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include ** **** * * **
** ** * * ****
struct Clock{
* * * *** ******** * hours;
* ** ** * ** ** * * ** minutes;
** * *** ***** * * *** seconds;
};
int main(){
* ** ******* * ** ** input;
* * ** *** * *** ** ******* Clock ** * *
* *** * *** * ** * *** ** * * * ** * *
** * *** ** ** * *** *** = input / 3600;
** * * * **** * * ** * ** = (input % 3600) / 60;
* * * ******* * * ** * * * = (input % 3600) % 60;
** * ** * * ** * ** * ** * * ** * * * ** *** *** * * * *
*** * * * * ***** ** 0;
}
answered
Apr 20, 2017
by
lpez07
(
38
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include **** ** ** *
* ** * ** *
struct Clock{
** ** **** * * * hours;
* ** ** ** * * *** * minutes;
*** * * *** * *** * ** seconds;
};
int main(){
* * * ** * * ***** ***** input;
* ** ***** ******** *** * *** Clock ****
* * *** ** ***** ** * * * *** * * *** * *****
* ** * * * ** ** ** = input / 3600;
* * ** ** **** * ** **** **** = (input % 3600) / 60;
*** * ** ** ** * * ** * = (input % 3600) % 60;
** * * * *** ** ** * ** ******* * ** ***** * * * * ** ** * * *
*** *** **** ** * ** **** 0;
}
answered
Apr 13, 2017
by
King in the north
(
6
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include * ** ***
** ** ***** **** *
struct Clock{
* * ** ** * *** **** ** hours;
* * **** **** ******** * minutes;
* * * * * ** ** *** ** seconds;
};
int main(){
* ** * ***** * * * *** *** input;
* * *** * * * * * * Clock ***
*** ** * ** * **** *** * * *** ********** ** ** *
** * * * * ** ** *** = input / 3600;
** * ****** **** * ***** * ** = (input % 3600) / 60;
* **** **** * ** *** ****** ** = (input % 3600) % 60;
**** * * * * * *** * * ** * ** * * ** * ** ** * * *
* *** * * * ** *** ** 0;
}
answered
Apr 13, 2017
by
SpanishFlu
(
-298
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include * *** *** * *
int main()
{
********* ** * * **** * * * * *** *
** * ***** * * ** ** * * * ** * *** **
* *** *** * ** ** ** * (second>=60)
** **** ** **** ** * *
* **** * ** * * ** * ** ** ** * = second/3600;
* * * * * ********* * ******* ** *** * * ** = second - (3600*hour);
* *** *** * ** * * ****** * *** ** *** * ** * * = second/60;
* ****** ** *** * ** * ** ** ***** **** * = second - (60*minute);
** ** ** * * * * ***
** * ** ** * * * * *** * ** ** * * * * *
* ** * ****** * ** * * ** **** 0;
}
answered
Apr 13, 2017
by
Vicky
(
-190
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include<stdio.h>
struct PPAP
{
* * * * * * * * * **** ** * * * * * * **** hour;
* * * ** * * *** *** ** * * * ** * * * *** *** minute;
** * *** *** **** ** * * ** * ** ** ** * second;
* * * ** * * ** ****
int main()
{
*** ** *** * ******** ** b;
*** * * * * ** * **** PPAP a;
* ** * **** * *** ** * * * ** ***** * **
* * **** **** * * *** * **
** ** ***** ** *** * * * * *
* * *** ** * *** ** ******** ***
** * * ** *** * * * * * * * ***
*** * * * ** **** * ** * ** * *** **** ***
** * ** * ** ** *** 0;
}
answered
Apr 12, 2017
by
weather
(
-264
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include *** *** ** *
* * * * * * *
struct Time {
* **** **** * * * hours;
** ** * ** * * * * minutes;
* * ** * ** * seconds;
};
int main( ) {
** * * * * ** * * Time t;
** * * * * * seconds, temp;
*** ** ** ** *** * * ** * ****
** *** ** * * * * * *** = * * *
* * * ** ** * * * ** * = * * **
** * ** ** * ** * * = temp/60;
* *** * * * * * * ** ** = temp%60;
* * ** *** * ** **** ** * ** * * * t.hours, ***** ** * **
}
answered
Apr 12, 2017
by
McLovin
(
20
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include * * * **** *
* * *** *** * * *
struct Clock{
* ********** * ** *** ** ** hours;
* * * * ** * ** ** ** minutes;
** ****** *** * * ** ** * * ** * seconds;
};
int main(){
* * ** * * **** * * ** input;
* * * * *** ** * Clock * ***
* * ** ** *** * ** ** **** * * * * * * ** ** *
* **** * * * *** *** * ** = input / 3600;
*** * ****** * * ** = (input % 3600) / 60;
* * ** * * *** *** * * ** = (input % 3600) % 60;
**** ***** * * * * * **** **** **** ** ** *** ** *** ****
*** ***** ** ** * ** * 0;
}
answered
Apr 12, 2017
by
Jughead
(
126
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include * ** **
* * ** * * **
struct Clock{
* * ** * * *** * * * hours;
** ** *** ** * *** * minutes;
** * * ******** seconds;
};
int main(){
* * *** * * ***** input;
* ****** * * * * **** Clock *** *
**** ** * * ***** * * * * * * * ** * **
** * * * ** * ** = input / 3600;
* * * * *** ** ****** * * **** = (input % 3600) / 60;
* *** ** * * ***** * ***** ** = (input % 3600) % 60;
*** * * * * * ** ** ** * ** **** *** * ** * **** * * * ** *** *
* **** *** ** * ****** 0;
}
answered
Apr 12, 2017
by
RAFIATOU MONE
(
237
points)
ask related question
comment
Please
log in
or
register
to add a comment.
Page:
1
2
3
4
next »
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English
中文
Tiếng Việt
IP:172.69.58.162
©2016-2025
Related questions
0
like
0
dislike
64
answers
04-06 Lab exercise 2: Structure to handle StudentList
[Exercise]
Coding (C)
-
asked
Apr 6, 2017
in
C
ID: 23560 -
Available when:
Unlimited
-
Due to:
Unlimited
|
4.7k
views
0
like
0
dislike
18
answers
04-20 Lab Exercise: Read and write data to file
[Exercise]
Essay (Open question)
-
asked
Apr 20, 2017
in
C
ID: 24219 -
Available when:
Unlimited
-
Due to:
Unlimited
|
1.9k
views
12,783
questions
183,442
answers
172,219
comments
4,824
users