摘要:
###7-1 求整数的位数及各位数字之和 (15分) #include <stdio.h> int main() { int N, w, s; w = 0; s = 0; scanf("%d", &N);//李志杰 while (N != 0) { w++; s = s + N % 10; N = 阅读全文
posted @ 2020-12-03 21:12
Jason_William
阅读(277)
评论(1)
推荐(0)
摘要:
| 这个作业属于那个课程: | C语言程序设计II | | : : |: : | | 这个作业要求在哪里:| https://edu.cnblogs.com/campus/zswxy/CST2020-2/homework/11589 | | 这个课程的目标是: | 学会并掌握循环结构并熟练运用whi 阅读全文
posted @ 2020-12-03 17:50
Jason_William
阅读(293)
评论(12)
推荐(1)

浙公网安备 33010602011771号