求解。谢谢你!

我在考试通软件里下载完了几本书,但发现找不到了,在哪里可以查看我已下载好的书籍??求解,谢谢!_百度知道
我在考试通软件里下载完了几本书,但发现找不到了,在哪里可以查看我已下载好的书籍??求解,谢谢!
我有更好的答案
用什么软件下载的喽,找一下下载记录
手机软件的话,在存储卡里的kaoshitong找找看
其他类似问题
为您推荐:
巧克力礼盒的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁求解,谢谢大家!_百度知道
求解,谢谢大家!
select3, had won an award.woHave you heard from ys behavior was
_____ the interest of the neighbors.ask
c.Don'Yes.Mike&#39.through4.
b.made20,i got a letter yesterday.effected
c.t understand why he avoided ______ to me .many
c.to concern
d.this15.which
c.A lot of books _____ by the fire, the guest team _____ us to another match this Saturday.that5.comfort19.lots16.it was the second time someone _____ me that evening.
d.The boy said he was quite _____ that he had made a careless mistake.cause
c.even13;&quot.should have destroyed14.amazed
d.&quot.aware
c(七)1;t be afraid of asking for help _____ it is need.over
a.The new hospital is in the _____ of construction.The population of Shanghai is bigger
than ______ of Qingdao.until
b.I know nothing about the accident except _____ i read in the newspaper.
a.This book gives all kinds of useful _____ on how to repair bikes.course
b.destroyed
c.There was a knock
at the door .with
c.challenged
d.to speak
a.arousing8.obey
b.to be spoken
d.dismissed
d.I have found some articles _____ the harmful effects of drinking.
a.affected7.
a.in11.understanding18.I can&#39.being concerned
b.had interrupted
c.s impolite to _____ at a stranger
for a long time.We&#39.what
a.period2.
a.Soldiers
to _____ orders.fluent
b.impressed
b.were destroyed
a.successful17.abolish
b.concerning6.He will carry
the memory of the accident _____ him forever.speaking9;t _____ news in it.The great amount of rain this autumn had _____ the harvest of cotton.rising
c.to interrupt
d.It&#39, but there wasn&#39.ll stand _____ your side whatever happens.We were all _____ to hear the news that Tom.do
a.concerned
c.improve12.unless
d.was destroyed
c.to have interrupted10.much
c.Though defeated , the silly boy .along
d.being spoken
to _____ the office of second vice-president.decorate
提问者采纳
c.were destroyed
14 c;“It is the +序数词+ time +从句”从句中的动词用现在完成时.much 16 c.with
带着4.found sb doing sth 看到某人正在做某事6d.period
in the period of construction施工期间2.concerning1. abolish 废除.b.information
19c.affected影响7arousing引起8d.what
15b.had interrupted
因为“It was the +序数词+time +从句”从句中动词用过去完成时.when13c.amazed17b。代替前面提到的the population5 d.that that是代词.d.aware
18 c。 10c,固定搭配9a,取消 12 a.speakingavoid doing sth 避免做某事.d.stare stare at盯着3.by
11A.challenged
提问者评价
谢谢您的细心回答~
来自团队:
先问一个私人问题,你们几年级?
如果是面临中考或高考,那么也可以理解。
当然,你说了这么一段话,我大概能理解,你对这个女孩子比较有好感,你认为那个女孩子应该对你也有好感,至少印象不差,但是对于她对你的在线隐身,你就没有把握了。 怎么说呢,或许这姑娘不讨厌你,但是也没有上升到很喜欢的地步,另外或许学业的问题吧
补充回答: ...
其他类似问题
为您推荐:
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁初学 Java,利用多线程交替打印数字和字母的程序会抛出 java.lang.IllegalMonitorStateException 异常 ,哪里的问题求解,谢谢
class Monitor {
&&& private static Monitor monitor =
&&& private Monitor() {
&&& public static Monitor getMonitor() {
&&&&&&& if (monitor == null) {
&&&&&&&&&&& monitor = new Monitor();
* 连续打印两个数字,然后等待
* @author admin
class NumberPrinter implements Runnable {
&&& private int num = 1;
&&& public void run() {
&&&&&&& synchronized (Monitor.getMonitor()) {
&&&&&&&&&&& while (num & 52) {
&&&&&&&&&&&&&&& System.out.print(num + " " + (num + 1) + " ");
&&&&&&&&&&&&&&& num += 2;
&&&&&&&&&&&&&&& Monitor.getMonitor().notify();
&&&&&&&&&&&&&&& if (num & 52) {
&&&&&&&&&&&&&&&&&&& try {
&&&&&&&&&&&&&&&&&&&&&&& Monitor.getMonitor().wait();
&&&&&&&&&&&&&&&&&&& } catch (InterruptedException e) {
&&&&&&&&&&&&&&&&&&&&&&& e.printStackTrace();
&&&&&&&&&&&&&&&&&&& }
&&&&&&&&&&&&&&& }
&&&&&&&&&&& }
* 打印一个字母,然后等待
* @author admin
class CharPrinter implements Runnable {
&&& private char ch = 'A';
&&& @Override
&&& public void run() {
&&&&&&& synchronized (Monitor.getMonitor()) {
&&&&&&&&&&& while (ch &= 'Z') {
&&&&&&&&&&&&&&& System.out.print(ch + " ");
&&&&&&&&&&&&&&& ch += 1;
&&&&&&&&&&&&&&& Monitor.getMonitor().notify();
&&&&&&&&&&&&&&& if (ch &= 'Z') {
&&&&&&&&&&&&&&&&&&& try {
&&&&&&&&&&&&&&&&&&&&&&& Monitor.getMonitor().wait();
&&&&&&&&&&&&&&&&&&& } catch (InterruptedException e) {
&&&&&&&&&&&&&&&&&&&&&&& e.printStackTrace();
&&&&&&&&&&&&&&&&&&& }
&&&&&&&&&&&&&&& }
&&&&&&&&&&& }
public class Main {
&&& public static void main(String[] args) {
&&&&&&& Thread thread1 = new Thread(new NumberPrinter());
&&&&&&& Thread thread2 = new Thread(new CharPrinter());
&&&&&&& thread1.start();
&&&&&&& thread2.start();
&&&&&&& try {
&&&&&&&&&&& thread1.join();
&&&&&&&&&&& thread2.join();
&&&&&&& } catch (InterruptedException e) {
&&&&&&&&&&& e.printStackTrace();
public static Monitor getMonitor() {
if (monitor == null) {
monitor = new Monitor();
问题是单例模式在多线程使用的情况下,没有加同步锁
引用&&&&&&&&&&&&&&&&& try {
&&&&&&&&&&&&&&&&&&&&&&& Monitor.getMonitor().wait();
&&&&&&&&&&&&&&&&&&& } catch (InterruptedException e) {
&&&&&&&&&&&&&&&&&&&&&&& e.printStackTrace();
&&&&&&&&&&&&&&&&&&& }
wait要有synchronized
Monitor m=Monitor.getMonitor();
synchronized(m){
} catch (InterruptedException e) {
e.printStackTrace();
已解决问题
未解决问题can we arrange the meeting for 。。求解谢谢!
在沪江关注考试英语的沪友小不正yy遇到了一个关于的疑惑,并悬赏50沪元,已有3人提出了自己的看法。
知识点疑惑描述:
1 can we arrange the meeting for 10:00am Momday 4th Decomber?
2 your interview is on Friday 19th september at 10:00 am.
第一句翻译一下。两个表达的时间格式都正确吗?
3月28号星期日上午十点怎么说啊?
最佳知识点讲解
知识点相关讲解
Your interview is at 10:00 am on Friday,September 19.
我们可以把会议安排在12月4号星期1上午10点吗?
Can we arrange the meeting at 10:00 am on Monday,December 4.
—— 狮子座飞天鼠
第一句:我们能定在12月4号,星期一上午的10点开会吗?
最好英语表达为: Can we arrange the meeting for 10:00am on Monday, December 4th?
3月28号星期日上午十点:
10:00am on Sunday, March 28th.
—— zhouji45
这两个题目的话还是介词在时间前的用法。简单的记法就这样了:
1) at: 具体的时间前使用。比如:at 10:00am, at 5:00pm etc.
2) on: 比at稍微大点的时间,比如,星期几,什么日期,偏向具体的某一天。
3) in: 比on 稍微大点的时间,比如某年某月,一般偏向不确定的日期。
知道了这个之后,下面就好解决了啊。
Can we arrange the meeting at 10:00am on Monday on December 4th?
我们可以把聚会时间安排在12月4号星期一上午10点钟么?
2. Your interview is at 10:00am on Friday on September 19th.
你的面试时间是9月19号星期五上午十点。
3. 3月28号星期日上午十点:
10:00am on Monday on March 28th.
个人意见,仅供参考。
—— 冰蓝水晶blue
相关其他知识点您的举报已经提交成功,我们将尽快处理,谢谢!
你好,nokia lumia 610作为一款搭载了windows phone 7.5系统的智能手机是支持微信的下载与安装的,你可以进入市场中下载,但是如果你的手...
你发布了不良信息了啊被人举报了,可以拨打腾讯客服8解封的如果能帮到你,麻烦点击“有用”,谢谢!
大家还关注
(window.slotbydup=window.slotbydup || []).push({
id: '2081942',
container: s,
size: '1000,60',
display: 'inlay-fix'}

我要回帖

更多关于 谢谢侬 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信