摘要:
/* * tsh - A tiny shell program with job control * * <Put your name and login ID here> */ #include "csapp.h" #include <stdio.h> #include <stdlib.h> #i 阅读全文
摘要:
1.水仙花数 代码 #include<bits/stdc++.h> using namespace std; #define ll long long int main() { int cnt=0; for(int i=100;i<=999;i++) { int tmp=i,sum=0; while 阅读全文