Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
3_5.cpp
Package: c.rar [view]
Upload User: puke2000
Upload Date: 2022-07-25
Package Size: 912k
Code Size: 1k
Category:
CSharp
Development Platform:
Visual C++
- #include <iostream.h>
- void main()
- {
- int a;
- cout <<"please input a number:n";
- cin >>a;
- int c1 = a%3 ==0;
- int c2 = a%5 ==0;
- int c3 = a%7 ==0;
- switch((c1<<2)+(c2<<1)+c3){
- case 0: cout <<"不能被3,5,7整除.n"; break;
- case 1: cout <<"只能被7整除.n"; break;
- case 2: cout <<"只能被5整除.n"; break;
- case 3: cout <<"可以被5,7整除.n"; break;
- case 4: cout <<"只能被3整除.n"; break;
- case 5: cout <<"可以被3,7整除.n"; break;
- case 6: cout <<"可以被3,5整除.n"; break;
- case 7: cout <<"可以被3,5,7整除.n"; break;
- }
- }