U E D R , A S I H C RSS

장용운/C과제/HW1

Difference between r1.1 and the current

@@ -1,35 +1 @@
장용운 C과제 HW1
 
 
== Write a program that reads a four digit integer and prints the sum of its digits as an output. ==
 
 
{{{
 
//////////////////////////////
// C Programming Homework 1 //
//////////////////////////////
// //
// Problem Number : 1 //
// //
// Student ID : 20114924 //
// //
// Student Name : 장용운 //
// //
//////////////////////////////
 
#include <stdio.h>
#define fdn four_digit_num
 
int main(void) {
int fdn;
 
scanf("%d", &fdn);
// printf("The sum of four numbers : %d\n", (fdn/1000%10) + (fdn/100%10) + (fdn/10%10) + (fdn%10));
printf("The sum of four numbers : %d\n", (int)(fdn/1000) + (fdn/100%10) + (fdn/10%10) + (fdn%10));
 
return 0;
}
 
}}}
삭제해주세요



삭제해주세요
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:30:44
Processing time 0.0229 sec